- Gateway: Dream Machine Pro (Unifi)
* IP:
10.0.0.1(fixed) * DNS Entry:gateway.example.net - Network Name:
example.net* Subnet: 10.0.0.0/24 (configured underSettings > Networks) - Client Machine (example): Named "
client1"
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Worldwide", | |
| "placeType": { | |
| "code": 19, | |
| "name": "Supername" | |
| }, | |
| "url": "http://where.yahooapis.com/v1/place/1", | |
| "parentid": 0, | |
| "country": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==WindhawkMod== | |
| // @id taskbar-view-dll-early-loader | |
| // @name Taskbar.View.dll early loader | |
| // @description This mod tries to improve compatibility of taskbar mods with StartAllBack due to recent changes in Windows | |
| // @version 0.1 | |
| // @author m417z | |
| // @github https://github.com/m417z | |
| // @twitter https://twitter.com/m417z | |
| // @homepage https://m417z.com/ | |
| // @include explorer.exe |
ADBを構築済みの環境でコマンドを流すことでAura from UnityとDigital Turbineをシステム上から擬似的に消し去ります。
ADBの環境構築はこちらを使えです。
元々はイスラエルのIT企業、ironSourceが提供していたサービスです。
現在ironSourceはUnityに買収されており、Aura from Unityになっています。
パッケージ名は com.aura.oobe.XXXX の綴りが基本的に共通しています。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Host Enumeration: | |
| --- OS Specifics --- | |
| wmic os LIST Full (* To obtain the OS Name, use the "caption" property) | |
| wmic computersystem LIST full | |
| --- Anti-Virus --- | |
| wmic /namespace:\\root\securitycenter2 path antivirusproduct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rem run as administrator | |
| @echo on & @setlocal enableextensions | |
| @echo ========================= | |
| @echo Turn off the time service | |
| net stop w32time | |
| @echo ====================================================================== | |
| @echo Set the SNTP (Simple Network Time Protocol) source for the time server | |
| w32tm /config /syncfromflags:manual /manualpeerlist:"0.it.pool.ntp.org 1.it.pool.ntp.org 2.it.pool.ntp.org 3.it.pool.ntp.org" | |
| @echo ============================================= | |
| @echo ... and then turn on the time service back on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 智能session命名:使用当前目录名或自定义名称 | |
| if [ -z "$1" ]; then | |
| SESSION_NAME=$(basename "$PWD" | tr '.' '-' | tr ' ' '-') | |
| else | |
| SESSION_NAME=$1 | |
| fi | |
| # 检查session是否已存在 | |
| tmux has-session -t "$SESSION_NAME" 2>/dev/null |
They should work. Works for all cores of your host system. Also you can download ESXi from here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name YNO Restore Share Screenshot | |
| // @match *://ynoproject.net/* | |
| // @version 0.1.2 | |
| // @grant unsafeWindow | |
| // @run-at document-start | |
| // ==/UserScript== | |
| let count = 0; | |
| const interval = setInterval(() => { |
NewerOlder